home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVFQENT.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  1KB  |  31 lines

  1. /*=======================================================*/
  2. /*  TVFQENT.C                                            */
  3. /*                                                       */
  4. /*  (c) Copyright 1988 Ralf Brown  All Rights Reserved   */
  5. /*  May be freely copied for noncommercial use, so long  */
  6. /*  as this copyright notice remains intact, and any     */
  7. /*  changes are marked in the comment blocks preceding   */
  8. /*  functions.                                           */
  9. /*=======================================================*/
  10.  
  11. #include <mem.h>
  12. #include "tvapi.h"
  13. #include "tvstream.h"
  14.  
  15. /*=============================================*/
  16. /* TVqry_entry   get field table entry         */
  17. /*   Ralf Brown 4/17/88                        */
  18. /*=============================================*/
  19.  
  20. void pascal TVqry_entry(OBJECT win,int fld,FT_ENTRY *entry)
  21. {
  22.    static BYTE stream[] = { S_QUERY(10), 0xF5, 0, 0,0,0,0,0,0,0,0 } ;
  23.  
  24.    stream[5] = fld ;
  25.    stream[13] = 0 ;  /* just in case entry is only 7 bytes */
  26.    TVwin_stream(win,stream) ;
  27.    memcpy((char *)entry, (char *)(stream+6), sizeof (FT_ENTRY)) ;
  28. }
  29.  
  30. /* End TVFQENT.C */
  31.